home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 351-375 / disk_355 / rexxhostlib / makefile < prev    next >
Makefile  |  1992-05-06  |  732b  |  29 lines

  1. ################################################################
  2. #
  3. #    MakeFile to build rexxhost.library & FancyDemo.
  4. #
  5. #    Aztec 'C' 5.0 is required to compile the library,
  6. #    FancyDemo will probably compile with any other
  7. #    compiler.
  8. #
  9. ################################################################
  10.  
  11. CFLAGS            = -so -wu -hi RexxHost.SYM
  12. OBJS            = LibStartup.o LibMain.o RexxHostLib.o StringAsm.o
  13.  
  14. all:            RexxHost.SYM rexxhost.library FancyDemo
  15.  
  16. rexxhost.library:    $(OBJS)
  17.             LN -o rexxhost.library $(OBJS) -Lc
  18.             Protect rexxhost.library -e
  19.             Copy rexxhost.library LIBS: CLONE
  20.  
  21. FancyDemo:        FancyDemo.o
  22.             LN FancyDemo.o -Lc
  23.  
  24. FancyDemo.o:        FancyDemo.c
  25.             CC FancyDemo.c
  26.  
  27. RexxHost.SYM:        PreInclude.c
  28.             CC -ho RexxHost.SYM PreInclude.c
  29.